home *** CD-ROM | disk | FTP | other *** search
- new nroot airplane/avoidcollision
- sel airplane/avoidcollision
-
- # --------------------------------------------------------------------
- # Hier geht es nur um Ausweichen. Ich liefere mal vom Modul bevorzugte
- # Richtungen, wie immer die auch berechnet wurden, und richte mich danach.
- # Es gibt eine Unterscheidung nach grossen und kleinen Hindernissen
- # --------------------------------------------------------------------
- new ncommandlist avoidleftbig
- avoidleftbig.setadjusttype horimaneuver
- avoidleftbig.settestcommand aacleftbig_test
- avoidleftbig.addcommand true -100 0 0 false 0 0 0 nothing 2.5
-
- proc aacleftbig_test {} {
-
- if {[.getavoidcollisionkind] == "big"} {
- if {[.getavoidcollisiondirection] == "left"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- new ncommandlist avoidrightbig
- avoidrightbig.setadjusttype horimaneuver
- avoidrightbig.settestcommand aacrightbig_test
- avoidrightbig.addcommand true 100 0 0 false 0 0 0 nothing 2.5
-
- proc aacrightbig_test {} {
-
- if {[.getavoidcollisionkind] == "big"} {
- if {[.getavoidcollisiondirection] == "right"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- new ncommandlist avoidupbig
- avoidupbig.setadjusttype horimaneuver
- avoidupbig.settestcommand aacupbig_test
- avoidupbig.addcommand true 0 100 -50 false 0 0 0 nothing 2.5
-
- proc aacupbig_test {} {
-
- if {[.getavoidcollisionkind] == "big"} {
- if {[.getavoidcollisiondirection] == "up"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- new ncommandlist avoiddownbig
- avoiddownbig.setadjusttype horimaneuver
- avoiddownbig.settestcommand aacdownbig_test
- avoiddownbig.addcommand true 0 -100 -50 false 0 0 0 nothing 2.5
-
- proc aacdownbig_test {} {
-
- if {[.getavoidcollisionkind] == "big"} {
- if {[.getavoidcollisiondirection] == "down"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- # ------ und nun das ganze nochmal fuer die "kleinen" Hindernisse ------
-
- new ncommandlist avoidleftsmall
- avoidleftsmall.setadjusttype horimaneuver
- avoidleftsmall.settestcommand aacleftsmall_test
- avoidleftsmall.addcommand true -100 0 0 false 0 0 0 nothing 1.0
-
- proc aacleftsmall_test {} {
-
- if {[.getavoidcollisionkind] == "small"} {
- if {[.getavoidcollisiondirection] == "left"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- new ncommandlist avoidrightsmall
- avoidrightsmall.setadjusttype horimaneuver
- avoidrightsmall.settestcommand aacrightsmall_test
- avoidrightsmall.addcommand true 100 0 0 false 0 0 0 nothing 1.0
-
- proc aacrightsmall_test {} {
-
- if {[.getavoidcollisionkind] == "small"} {
- if {[.getavoidcollisiondirection] == "right"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- new ncommandlist avoidupsmall
- avoidupsmall.setadjusttype horimaneuver
- avoidupsmall.settestcommand aacupsmall_test
- avoidupsmall.addcommand true 0 100 -50 false 0 0 0 nothing 1.0
-
- proc aacupsmall_test {} {
-
- if {[.getavoidcollisionkind] == "small"} {
- if {[.getavoidcollisiondirection] == "up"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- new ncommandlist avoiddownsmall
- avoiddownsmall.setadjusttype horimaneuver
- avoiddownsmall.settestcommand aacdownsmall_test
- avoiddownsmall.addcommand true 0 -100 -50 false 0 0 0 nothing 1.0
-
- proc aacdownsmall_test {} {
-
- if {[.getavoidcollisionkind] == "small"} {
- if {[.getavoidcollisiondirection] == "down"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- #--------------------------------------------------------------
- # Ausnahmebehandlung: Anscheinend passiert folgende Situation:
- # eine erwartete Kollision bringt uns in den zustand, aber dann
- # wurde das Modul schon wieder getriggert ohne eine Kollision
- # zu melden. Dafuer machen wir noch ein kurzes Script.
- # Ausserdem, und das wird der hauptgrund sein, wird zwar der
- # Zustand nach abarbeitung der ersten Liste abgebrochen, aber
- # das Modul such noch eine weitere Liste. Also bieten wir eine,
- # auch wenn diese im naechsten Frame abgeschalten wird.
- #--------------------------------------------------------------
- new ncommandlist avoidnothing
- avoidnothing.setadjusttype horimaneuver
- avoidnothing.settestcommand aacnothing_test
- avoidnothing.addcommand true 0 0 -100 false 0 0 0 nothing 1.0
-
- proc aacnothing_test {} {
-
- if {[.getavoidcollisionkind] == "nothing"} {
- return 1.0
- } else {
- return 0.0
- }
- }
-
- sel ..
- sel ..
-
-